home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Application
/
WindowEventHandler.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
422b
|
22 lines
// WindowEventHandler.h
#ifndef WindowEventHandler_h
#define WindowEventHandler_h
class ActivateEvent;
class DeactivateEvent;
class UpdateEvent;
class WindowEventHandler
{
protected:
~WindowEventHandler() {}
public:
virtual void HandleActivateEvent( const ActivateEvent& );
virtual void HandleDeactivateEvent( const DeactivateEvent& );
virtual void HandleUpdateEvent( const UpdateEvent& );
};
#endif